a6691ab2fd1b60bc3cbab6931e707d796910bb4f,public/java/src/org/broadinstitute/sting/commandline/ArgumentTypeDescriptor.java,ArgumentTypeDescriptor,createDefaultArgumentDefinition,#ArgumentSource#,133

Before Change


                                       source.isFlag(),
                                       source.isMultiValued(),
                                       source.isHidden(),
                                       getCollectionComponentType(source.field),
                                       ArgumentDefinition.getExclusiveOf(argumentAnnotation),
                                       ArgumentDefinition.getValidationRegex(argumentAnnotation),
                                       getValidOptions(source) );

After Change


                source.isFlag(),
                source.isMultiValued(),
                source.isHidden(),
                makeRawTypeIfNecessary(getCollectionComponentType(source.field)),
                ArgumentDefinition.getExclusiveOf(argumentAnnotation),
                ArgumentDefinition.getValidationRegex(argumentAnnotation),
                getValidOptions(source) );